home *** CD-ROM | disk | FTP | other *** search
/ Dangerous Digital Movies: Omake Photos 200 / Dangerous Digital Moves: Omake Photos 200.iso / pc / mmd / mvplay.dxr / 00046.ls < prev    next >
Encoding:
Text File  |  1996-08-23  |  297 b   |  17 lines

  1. on mouseDown
  2.   set the movieRate of sprite 1 to 0
  3.   set the movieTime of sprite 1 to 0
  4.   set the type of sprite 1 to 0
  5.   updateStage()
  6.   go(the frame + 1)
  7. end
  8.  
  9. on exitFrame
  10.   global qtmtime
  11.   if the movieTime of sprite 1 >= qtmtime then
  12.     go(the frame + 1)
  13.   else
  14.     go(the frame)
  15.   end if
  16. end
  17.